home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / tuningentry.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  26 lines

  1. /* RCSVER $Id: tuningentry.sql,v 1.4 1999-02-24 16:20:49-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        tuningentry.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the tuningentry table. This table contains
  9. *        constraint information for all tuning values entered in
  10. *        free format in a text field.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE tuningentry
  14. (
  15.     name    VARCHAR2(30),        /* Name of tuning variable */
  16.     minval    NUMBER(38),        /* Minimum allowable value */
  17.     maxval    NUMBER(38),        /* Maximum allowable value */
  18.     numdigits    NUMBER(38),    /* Max number of digits */
  19.     config_num      NUMBER(38)
  20.             CONSTRAINT ref_tuningentry2 REFERENCES configset(num)
  21.             ON DELETE CASCADE,
  22.     CONSTRAINT fk_tuningentry FOREIGN KEY (name, config_num) REFERENCES
  23.             fbtuning(name, config_num) ON DELETE CASCADE,
  24.     CONSTRAINT pk_tuningentry PRIMARY KEY (name, config_num)
  25. );
  26.